home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’97
/
Warrior’s Progress
/
source code
/
Source
/
Libraries
/
Attributes
/
HasFace.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-06-28
|
347 b
|
28 lines
|
[
TEXT/CWIE
]
// HasFace.h
#ifndef HasFace_h
#define HasFace_h
#ifndef Face_h
#include "Face.h"
#endif
class HasFace
{
private:
::Face face;
protected:
virtual void FaceChanged() = 0;
public:
HasFace( Face theFace )
: face( theFace )
{}
const ::Face& Face() const { return face; }
void SetFace( const ::Face& );
};
#endif